OpenStack Grizzly - Pre-Requirements
2013/08/13 |
This is the exmaple of Cloud Computiong by OpenStack
It's possible to install each componets of OpenStack on different server, but this example shows to install all components on a server. |
|
[1] |
Install NTP Server like here and adjusts the date and time.
|
[2] |
Install KVM HyperVisor like here.
It's unnecessarry to set Bridge networking manually, though. ( OpenStack system sets Bridge networking ) |
[3] | |
[4] | |
[5] | Install the repository of Openstack Grizzly and Qpid, Memcached, Avahi like follows. |
[root@dlp ~]#
wget http://repos.fedorapeople.org/repos/openstack/openstack-grizzly/epel-openstack-grizzly.repo -P /etc/yum.repos.d [root@dlp ~]# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/epel-openstack-grizzly.repo
[root@dlp ~]#
yum -y install qpid-cpp-server memcached avahi
[root@dlp ~]#
vi /etc/qpidd.conf # last line: change auth= no for service in qpidd memcached avahi-daemon; do /etc/rc.d/init.d/$service start chkconfig $service on done Starting Qpid AMQP daemon: [ OK ] Starting memcached: [ OK ] Starting Avahi daemon... [ OK ] |